eacbac44d26c259fbd3c8cb5da57affbd7a7c769,modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridMergeIndexUnsorted.java,GridMergeIndexUnsorted,addPage0,#GridResultPage#,46

Before Change



    /** {@inheritDoc} */
    @Override protected void addPage0(GridResultPage page) {
        if (page.rows() != null || page.isLast()) // We are not interested in terminating pages which are not last.
            queue.add(page);
    }

After Change



    /** {@inheritDoc} */
    @Override protected void addPage0(GridResultPage page) {
        if (!page.rows().isEmpty() || page.isLast() || queue.isEmpty())
            queue.add(page);
    }